home *** CD-ROM | disk | FTP | other *** search
/ Next Step: Mars? / Next Step Mars (1994)(IVI).iso / shared.dir / 00657_Script_657 < prev    next >
Text File  |  1994-12-01  |  876b  |  24 lines

  1. --TOOLS
  2.  
  3.  
  4. on checkGraphics highestCastNum -- check to make sure vids and picts fit our specs.
  5.   --Call this from the message window, passing it the highest number of castmembers
  6.   --as a parameter. bl
  7.   
  8.   repeat with i = 1 to highestCastNum
  9.     
  10.     if the castType of cast i = #bitmap then
  11.       if the depth of cast i <> 8 then put "cast " & i & " is not 8 bit"
  12.       
  13.     else if the castType of cast i = #digitalVideo then
  14.       if the directToStage of cast i <> 1 then put "cast " & i & " is not direct to stage"
  15.       if the pausedAtStart of cast i <> 1 then put "cast " & i & " is not paused at start"
  16.       if the preload of cast i <> 1 then put "cast " & i & " is not set to preload"
  17.       if the sound of cast i <> 1 then put "cast " & i & " is not set for sound"
  18.     end if
  19.     
  20.   end repeat
  21.   beep
  22. end checkGraphics
  23.  
  24. -----------------------